home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / XSOURCE / XSOURCE.ZIP / vfpsource / wizards / Wzapp / wzapp.h < prev    next >
Encoding:
Text File  |  1998-05-01  |  4.4 KB  |  130 lines

  1. * APPWIZ.H - Header file for Application Wizard files.
  2. *
  3.  
  4. ***** Dropdown list selector
  5. #define STEP1_LOC    "Step 1 - Choose Project Location"
  6. #define STEP2_LOC    "Step 2 - Choose Database"
  7. #define STEP3_LOC    "Step 3 - Choose Documents"
  8. #define STEP4_LOC    "Step 4 - Configure Menu"
  9. #define STEP5_LOC    "Step 5 - Finish"
  10.  
  11. ***** Screen directions
  12. #define DESC1        "How would you like to set up your project?"+CHR(13)+CHR(13)+ ;
  13.         "You can create a complete application or just a framework, which you can add components to later."+ ;
  14.         "  To have the wizard create all the directories for you, click the Create project directory structure option."
  15.  
  16. #define DESC2        "Which database would you like to use in this application?"+CHR(13)+CHR(13)+ ;
  17.         "You can use an existing database, or you can create a new one from a template."
  18.  
  19. #define DESC3        "Which documents would you like to include in your application?"+CHR(13)+CHR(13)+ ;
  20.                     "Documents contained in the list will be added to the new project.  To include additional documents, click Add.  To remove a document from the list, select it, then click Remove."
  21.  
  22. #define DESC4        "What menu system would you like to have in your application?"+CHR(13)+CHR(13)+ ;
  23.         "If you don't want a particular menu item, highlight it and click Exclude."
  24.  
  25. #define DESC5        "You are ready to create your application."+CHR(13)+CHR(13)+ ;
  26.         "Select an option and click Finish."
  27.  
  28. ***** Screen BMP files
  29. #define BMPFILE1    "app1.bmp"
  30. #define BMPFILE2    "app2.bmp"
  31. #define BMPFILE3    "app3.bmp"
  32. #define BMPFILE4    "app4.bmp"
  33. #define BMPFILE5    ""            &&empty -- finish screen
  34.  
  35. #DEFINE    E_BADPARMS_LOC    "Invalid parameters passed."
  36. #DEFINE    E_NOGRID_LOC    "No grid available in style."
  37.  
  38. ** Data types
  39. #DEFINE DT_NUMERIC  'N'
  40. #DEFINE DT_FLOAT     'F'
  41. #DEFINE DT_LOGIC     'L'
  42. #DEFINE DT_MEMO      'M'
  43. #DEFINE DT_GENERAL  'G'
  44. #DEFINE DT_CHAR      'C'
  45. #DEFINE DT_DATE      'D'
  46. #DEFINE DT_DOUBLE      'B'
  47. #DEFINE DT_TIME      'T'
  48. #DEFINE DT_MONEY      'Y'
  49.  
  50. ** Miscellaneous
  51. #DEFINE NUM_AFIELDS        11    &&linear dimension of AFIELDS
  52. #DEFINE C_SEP            " = "            &&property separator
  53. #DEFINE C_VERSTAMP        "VERSION =  0.001"
  54. #DEFINE C_DOS             "DOS"
  55. #DEFINE C_WINDOWS         "WINDOWS"
  56. #DEFINE C_MAC             "MAC"
  57. #DEFINE C_UNIX            "UNIX"
  58. #DEFINE    C_CRLF            CHR(13)+CHR(10)    &&return/linefeed
  59. #DEFINE    C_CR            CHR(13)            &&return
  60. #DEFINE    C_LF            CHR(10)            &&linefeed
  61. #DEFINE    C_TAB            CHR(9)            &&tab
  62. #DEFINE    C_SCXEXT        "SCX"            &&2.x screen extension
  63. #DEFINE C_DEFSET        "Formset1"
  64. #DEFINE C_DEFFORM        "Form1"
  65. #DEFINE C_MAXCHAR        60
  66. #DEFINE C_WINFONT        "MS Sans Serif"
  67. #DEFINE C_WINFSIZE        8
  68. #DEFINE C_WINFSTYLE        "B"
  69. #DEFINE C_WINFBOLD        .T.
  70. #DEFINE C_WINFITALIC    .F.
  71. #DEFINE C_WINFUNDER        .F.
  72. #DEFINE CRET            CHR(13)
  73. #DEFINE CRLF            CHR(13)+CHR(10)
  74.  
  75.  
  76. *-- Titles
  77. #DEFINE T_APPLICATION_WIZARD_LOC    "Application Wizard"
  78.  
  79. *-- Captions
  80. #DEFINE C_SAVE_PROJECT_LOC            "\<Save project"
  81. #DEFINE C_SAVE_PROJECT_MODIFY_LOC    "Save project and \<modify it"
  82. #DEFINE C_SAVE_APP_RUN_LOC            "Save application and \<run it"
  83.  
  84. *-- Messages
  85. #DEFINE M_APPLICATION_WIZARD_LOC    "Application Wizard"
  86. #DEFINE M_STARTUP_LOC                "Startup"
  87. #DEFINE M_STARTUP_MARKER_LOC        "  (startup)"
  88. #DEFINE M_TEMPLATE_MARKER_LOC        "  (template)"
  89.  
  90. *-- Fonts
  91. #DEFINE F_ARIAL_LOC                    "Arial"
  92. #DEFINE F_MS_SANS_SERIF_LOC            "MS Sans Serif"
  93.  
  94. *-- Wait windows
  95. #DEFINE W_MATCH_NOT_FOUND_LOC        "Match not found"
  96.  
  97. *-- ASCII codes
  98. #DEFINE EOL        CHR(0)
  99. #DEFINE    MARKER    CHR(1)
  100. #DEFINE    TAB        CHR(9)
  101. #DEFINE    LF        CHR(10)
  102. #DEFINE    CR        CHR(13)
  103. #DEFINE CR_LF    CR+LF
  104.  
  105. *-- Help
  106. #DEFINE wizApplication_Wizard    95825502
  107. #DEFINE wizApplication_Wizard_Step_1    95825503
  108. #DEFINE wizApplication_Wizard_Step_2    95825504
  109. #DEFINE wizApplication_Wizard_Step_3    95825505
  110. #DEFINE wizApplication_Wizard_Step_4    95825506
  111. #DEFINE wizApplication_Wizard_Step_5    95825507
  112.  
  113. *-- VFP98 framework
  114. #DEFINE APP_BUILDER_FILE_SUFFIX   "_app"
  115. #DEFINE APP_BUILDER_CLASS_PREFIX  "app"
  116.  
  117. #DEFINE APP_BUILDER_MAINMENU_SUFFIX   "_main"
  118. #DEFINE APP_BUILDER_TOPMENU_SUFFIX    "_top"        
  119. #DEFINE APP_BUILDER_APPENDMENU_SUFFIX "_append"        
  120. #DEFINE APP_BUILDER_GOMENU_SUFFIX     "_go"
  121. * #DEFINE APP_BUILDER_TOPGOMENU_SUFFIX  "_top_go"
  122. #DEFINE REPORTS_CLASSLIB    "FFC\_REPORTS.VCX"
  123.  
  124. #DEFINE INCLUDECAPTION_LOC    "\<Include"
  125. #DEFINE EXCLUDECAPTION_LOC    "\<Exclude"
  126. #DEFINE LOADTEMPLATE_LOC    "Loading template "
  127. #DEFINE CREATEPJX_LOC "Create project directory structure automatically enabled."
  128. #DEFINE EXCLUDE2_LOC    "  (excluded)"
  129.  
  130. #DEFINE APPGENERATING_LOC    "Please be patient while application is being generated..."